home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / fileutil / fileutils-3.16.tar.gz / fileutils-3.16.tar / fileutils-3.16 / lib / strtol.c < prev    next >
C/C++ Source or Header  |  1996-11-02  |  9KB  |  369 lines

  1. /* strtol - Convert string representation of a number into an integer value.
  2.    Copyright (C) 1991, 92, 94, 95, 96 Free Software Foundation, Inc.
  3.    NOTE: The canonical source of this file is maintained with the GNU C
  4.    Library.  Bugs can be reported to bug-glibc@prep.ai.mit.edu.
  5.  
  6.    This program is free software; you can redistribute it and/or modify it
  7.    under the terms of the GNU General Public License as published by the
  8.    Free Software Foundation; either version 2, or (at your option) any
  9.    later version.
  10.  
  11.    This program is distributed in the hope that it will be useful,
  12.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.    GNU General Public License for more details.
  15.  
  16.    You should have received a copy of the GNU General Public License
  17.    along with this program; if not, write to the Free Software Foundation,
  18.    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  19.  
  20. #if HAVE_CONFIG_H
  21. # include <config.h>
  22. #endif
  23.  
  24. #ifdef _LIBC
  25. # define USE_NUMBER_GROUPING
  26. # define STDC_HEADERS
  27. # define HAVE_LIMITS_H
  28. #endif
  29.  
  30. #include <ctype.h>
  31. #include <errno.h>
  32. #ifndef errno
  33. extern int errno;
  34. #endif
  35. #ifndef __set_errno
  36. # define __set_errno(Val) errno = (Val)
  37. #endif
  38.  
  39. #ifdef HAVE_LIMITS_H
  40. # include <limits.h>
  41. #endif
  42.  
  43. #ifdef STDC_HEADERS
  44. # include <stddef.h>
  45. # include <stdlib.h>
  46. # include <string.h>
  47. #else
  48. # ifndef NULL
  49. #  define NULL 0
  50. # endif
  51. #endif
  52.  
  53. #ifdef USE_NUMBER_GROUPING
  54. # include "../locale/localeinfo.h"
  55. #endif
  56.  
  57. /* Nonzero if we are defining `strtoul' or `strtouq', operating on
  58.    unsigned integers.  */
  59. #ifndef UNSIGNED
  60. # define UNSIGNED 0
  61. # define INT LONG int
  62. #else
  63. # define INT unsigned LONG int
  64. #endif
  65.  
  66. /* Determine the name.  */
  67. #if UNSIGNED
  68. # ifdef USE_WIDE_CHAR
  69. #  ifdef QUAD
  70. #   define strtol wcstouq
  71. #  else
  72. #   define strtol wcstoul
  73. #  endif
  74. # else
  75. #  ifdef QUAD
  76. #   define strtol strtouq
  77. #  else
  78. #   define strtol strtoul
  79. #  endif
  80. # endif
  81. #else
  82. # ifdef USE_WIDE_CHAR
  83. #  ifdef QUAD
  84. #   define strtol wcstoq
  85. #  else
  86. #   define strtol wcstol
  87. #  endif
  88. # else
  89. #  ifdef QUAD
  90. #   define strtol strtoq
  91. #  endif
  92. # endif
  93. #endif
  94.  
  95. /* If QUAD is defined, we are defining `strtoq' or `strtouq',
  96.    operating on `long long int's.  */
  97. #ifdef QUAD
  98. # define LONG long long
  99. # undef LONG_MIN
  100. # define LONG_MIN LONG_LONG_MIN
  101. # undef LONG_MAX
  102. # define LONG_MAX LONG_LONG_MAX
  103. # undef ULONG_MAX
  104. # define ULONG_MAX ULONG_LONG_MAX
  105. # if __GNUC__ == 2 && __GNUC_MINOR__ < 7
  106.    /* Work around gcc bug with using this constant.  */
  107.    static const unsigned long long int maxquad = ULONG_LONG_MAX;
  108. #  undef ULONG_MAX
  109. #  define ULONG_MAX maxquad
  110. # endif
  111. #else
  112. # define LONG long
  113.  
  114. #ifndef ULONG_MAX
  115. # define ULONG_MAX ((unsigned long) ~(unsigned long) 0)
  116. #endif
  117. #ifndef LONG_MAX
  118. # define LONG_MAX ((long int) (ULONG_MAX >> 1))
  119. #endif
  120. #endif
  121.  
  122. #ifdef USE_WIDE_CHAR
  123. # include <wchar.h>
  124. # include <wctype.h>
  125. # define L_(Ch) L##Ch
  126. # define UCHAR_TYPE wint_t
  127. # define STRING_TYPE wchar_t
  128. # define ISSPACE(Ch) iswspace (Ch)
  129. # define ISALPHA(Ch) iswalpha (Ch)
  130. # define TOUPPER(Ch) towupper (Ch)
  131. #else
  132. # define L_(Ch) Ch
  133. # define UCHAR_TYPE unsigned char
  134. # define STRING_TYPE char
  135. # define ISSPACE(Ch) isspace (Ch)
  136. # define ISALPHA(Ch) isalpha (Ch)
  137. # define TOUPPER(Ch) toupper (Ch)
  138. #endif
  139.  
  140. #ifdef __STDC__
  141. # define INTERNAL(X) INTERNAL1(X)
  142. # define INTERNAL1(X) __##X##_internal
  143. # define WEAKNAME(X) WEAKNAME1(X)
  144. #else
  145. # define INTERNAL(X) __/**/X/**/_internal
  146. #endif
  147.  
  148. #ifdef USE_NUMBER_GROUPING
  149. /* This file defines a function to check for correct grouping.  */
  150. # include "grouping.h"
  151. #endif
  152.  
  153.  
  154. /* Convert NPTR to an `unsigned long int' or `long int' in base BASE.
  155.    If BASE is 0 the base is determined by the presence of a leading
  156.    zero, indicating octal or a leading "0x" or "0X", indicating hexadecimal.
  157.    If BASE is < 2 or > 36, it is reset to 10.
  158.    If ENDPTR is not NULL, a pointer to the character after the last
  159.    one converted is stored in *ENDPTR.  */
  160.  
  161. INT
  162. INTERNAL (strtol) (nptr, endptr, base, group)
  163.      const STRING_TYPE *nptr;
  164.      STRING_TYPE **endptr;
  165.      int base;
  166.      int group;
  167. {
  168.   int negative;
  169.   register unsigned LONG int cutoff;
  170.   register unsigned int cutlim;
  171.   register unsigned LONG int i;
  172.   register const STRING_TYPE *s;
  173.   register UCHAR_TYPE c;
  174.   const STRING_TYPE *save, *end;
  175.   int overflow;
  176.  
  177. #ifdef USE_NUMBER_GROUPING
  178.   /* The thousands character of the current locale.  */
  179.   wchar_t thousands;
  180.   /* The numeric grouping specification of the current locale,
  181.      in the format described in <locale.h>.  */
  182.   const char *grouping;
  183.  
  184.   if (group)
  185.     {
  186.       grouping = _NL_CURRENT (LC_NUMERIC, GROUPING);
  187.       if (*grouping <= 0 || *grouping == CHAR_MAX)
  188.     grouping = NULL;
  189.       else
  190.     {
  191.       /* Figure out the thousands separator character.  */
  192.       if (mbtowc (&thousands, _NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP),
  193.               strlen (_NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP))) <= 0)
  194.         thousands = (wchar_t) *_NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP);
  195.       if (thousands == L'\0')
  196.         grouping = NULL;
  197.     }
  198.     }
  199.   else
  200.     grouping = NULL;
  201. #endif
  202.  
  203.   if (base < 0 || base == 1 || base > 36)
  204.     base = 10;
  205.  
  206.   save = s = nptr;
  207.  
  208.   /* Skip white space.  */
  209.   while (ISSPACE (*s))
  210.     ++s;
  211.   if (*s == L_('\0'))
  212.     goto noconv;
  213.  
  214.   /* Check for a sign.  */
  215.   if (*s == L_('-'))
  216.     {
  217.       negative = 1;
  218.       ++s;
  219.     }
  220.   else if (*s == L_('+'))
  221.     {
  222.       negative = 0;
  223.       ++s;
  224.     }
  225.   else
  226.     negative = 0;
  227.  
  228.   if (base == 16 && s[0] == L_('0') && TOUPPER (s[1]) == L_('X'))
  229.     s += 2;
  230.  
  231.   /* If BASE is zero, figure it out ourselves.  */
  232.   if (base == 0)
  233.     if (*s == L_('0'))
  234.       {
  235.     if (TOUPPER (s[1]) == L_('X'))
  236.       {
  237.         s += 2;
  238.         base = 16;
  239.       }
  240.     else
  241.       base = 8;
  242.       }
  243.     else
  244.       base = 10;
  245.  
  246.   /* Save the pointer so we can check later if anything happened.  */
  247.   save = s;
  248.  
  249. #ifdef USE_NUMBER_GROUPING
  250.   if (group)
  251.     {
  252.       /* Find the end of the digit string and check its grouping.  */
  253.       end = s;
  254.       for (c = *end; c != L_('\0'); c = *++end)
  255.     if ((wchar_t) c != thousands
  256.         && ((wchar_t) c < L_('0') || (wchar_t) c > L_('9'))
  257.         && (!ISALPHA (c) || (int) (TOUPPER (c) - L_('A') + 10) >= base))
  258.       break;
  259.       if (*s == thousands)
  260.     end = s;
  261.       else
  262.     end = correctly_grouped_prefix (s, end, thousands, grouping);
  263.     }
  264.   else
  265. #endif
  266.     end = NULL;
  267.  
  268.   cutoff = ULONG_MAX / (unsigned LONG int) base;
  269.   cutlim = ULONG_MAX % (unsigned LONG int) base;
  270.  
  271.   overflow = 0;
  272.   i = 0;
  273.   for (c = *s; c != L_('\0'); c = *++s)
  274.     {
  275.       if (s == end)
  276.     break;
  277.       if (c >= L_('0') && c <= L_('9'))
  278.     c -= L_('0');
  279.       else if (ISALPHA (c))
  280.     c = TOUPPER (c) - L_('A') + 10;
  281.       else
  282.     break;
  283.       if ((int) c >= base)
  284.     break;
  285.       /* Check for overflow.  */
  286.       if (i > cutoff || (i == cutoff && c > cutlim))
  287.     overflow = 1;
  288.       else
  289.     {
  290.       i *= (unsigned LONG int) base;
  291.       i += c;
  292.     }
  293.     }
  294.  
  295.   /* Check if anything actually happened.  */
  296.   if (s == save)
  297.     goto noconv;
  298.  
  299.   /* Store in ENDPTR the address of one character
  300.      past the last character we converted.  */
  301.   if (endptr != NULL)
  302.     *endptr = (STRING_TYPE *) s;
  303.  
  304. #if !UNSIGNED
  305.   /* Check for a value that is within the range of
  306.      `unsigned LONG int', but outside the range of `LONG int'.  */
  307.   if (overflow == 0
  308.       && i > (negative
  309.           ? -((unsigned LONG int) (LONG_MIN + 1)) + 1
  310.           : (unsigned LONG int) LONG_MAX))
  311.     overflow = 1;
  312. #endif
  313.  
  314.   if (overflow)
  315.     {
  316.       __set_errno (ERANGE);
  317. #if UNSIGNED
  318.       return ULONG_MAX;
  319. #else
  320.       return negative ? LONG_MIN : LONG_MAX;
  321. #endif
  322.     }
  323.  
  324.   /* Return the result of the appropriate sign.  */
  325.   return (negative ? -i : i);
  326.  
  327. noconv:
  328.   /* We must handle a special case here: the base is 0 or 16 and the
  329.      first two characters are '0' and 'x', but the rest are no
  330.      hexadecimal digits.  This is no error case.  We return 0 and
  331.      ENDPTR points to the `x`.  */
  332.   if (endptr != NULL)
  333.     if (save - nptr >= 2 && TOUPPER (save[-1]) == L_('X')
  334.     && save[-2] == L_('0'))
  335.       *endptr = (STRING_TYPE *) &save[-1];
  336.     else
  337.       /*  There was no number to convert.  */
  338.       *endptr = (STRING_TYPE *) nptr;
  339.  
  340.   return 0L;
  341. }
  342.  
  343. /* External user entry point.  */
  344.  
  345. #if _LIBC - 0 == 0
  346. # undef PARAMS
  347. # if defined (__STDC__) && __STDC__
  348. #  define PARAMS(Args) Args
  349. # else
  350. #  define PARAMS(Args) ()
  351. # endif
  352.  
  353. /* Prototype.  */
  354. INT strtol PARAMS ((const STRING_TYPE *nptr, STRING_TYPE **endptr, int base));
  355. #endif
  356.  
  357.  
  358. INT
  359. #ifdef weak_function
  360. weak_function
  361. #endif
  362. strtol (nptr, endptr, base)
  363.      const STRING_TYPE *nptr;
  364.      STRING_TYPE **endptr;
  365.      int base;
  366. {
  367.   return INTERNAL (strtol) (nptr, endptr, base, 0);
  368. }
  369.